/* 字体图标 */
@font-face {
    font-family: 'iconfont';
    /* project id 1620622 */
    src: url('//at.alicdn.com/t/font_1620622_zzh9sezzmta.eot');
    src: url('//at.alicdn.com/t/font_1620622_zzh9sezzmta.eot?#iefix') format('embedded-opentype'),
        url('//at.alicdn.com/t/font_1620622_zzh9sezzmta.woff2') format('woff2'),
        url('//at.alicdn.com/t/font_1620622_zzh9sezzmta.woff') format('woff'),
        url('//at.alicdn.com/t/font_1620622_zzh9sezzmta.ttf') format('truetype'),
        url('//at.alicdn.com/t/font_1620622_zzh9sezzmta.svg#iconfont') format('svg');
}

.iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Source Han Sans CN', 'PingFang SC', 'Arial', 'Microsoft YaHei', '微软雅黑', SimSun, Heiti, sans-serif;
}

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ellipsis2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ellipsis3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ellipsis4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
}

a {
    text-decoration: none;
}

ul li {
    list-style: none;
}

ul {
    margin: 0;
    padding: 0;
}

a:hover {
    text-decoration: none;
}

/* 加载 */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(45deg, #ffffff, #ffffff);
    z-index: 9999999;
}

#preloader #status {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#preloader #status .spinner {
    width: 40px;
    height: 40px;
    position: relative;
    margin: 100px auto;
}

#preloader #status .spinner .double-bounce1,
#preloader #status .spinner .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #2f55d4;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

#preloader #status .spinner .double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes sk-bounce {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* 导航区域 */
#topnav {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    z-index: 99;
    background-color: transparent;
    border: 0;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

#topnav .logo {
    float: left;
}

#topnav .logo .logo-dark {
    display: none;
    height: 40px;
}

#topnav .logo .logo-light {
    display: inline-block;
    height: 40px;
}

#topnav .has-submenu.active a {
    color: #ffffff;
}

.inner-header {
    padding-left: 0;
    padding-right: 0;
}

#topnav .has-submenu.active .submenu li.active>a {
    color: #333;
}

#topnav .has-submenu {
    position: relative;
}

#topnav .has-submenu .submenu .submenu-arrow {
    border: solid #3c4858;
    border-radius: 0.5px;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    right: 20px;
    top: 14px;
}

#topnav .navbar-toggle {
    border: 0;
    position: relative;
    /* width: 60px; */
    padding: 0;
    margin: 0;
    cursor: pointer;
}

#topnav .navbar-toggle .lines {
    width: 25px;
    display: block;
    position: relative;
    /* margin: 20px 20px 20px; */
    height: 18px;
}

#topnav .navbar-toggle span {
    height: 2px;
    width: 100%;
    background-color: #3c4858;
    display: block;
    margin-bottom: 5px;
    -webkit-transition: -webkit-transform .5s ease;
    transition: -webkit-transform .5s ease;
    transition: transform .5s ease;
    transition: transform .5s ease, -webkit-transform .5s ease;
}

#topnav .navbar-toggle span:last-child {
    margin-bottom: 0;
}

#topnav .buy-button {
    float: right;
    line-height: 68px;
    padding: 3px 0;
}

#topnav .navbar-toggle.open span {
    position: absolute;
}

#topnav .navbar-toggle.open span:first-child {
    top: 6px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

#topnav .navbar-toggle.open span:nth-child(2) {
    visibility: hidden;
}

#topnav .navbar-toggle.open span:last-child {
    width: 100%;
    top: 6px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#topnav .navbar-toggle.open span:hover {
    background-color: #2f55d4;
}

#topnav .navbar-toggle:hover,
#topnav .navbar-toggle:focus,
#topnav .navbar-toggle .navigation-menu>li>a:hover,
#topnav .navbar-toggle:focus {
    background-color: transparent;
}

#topnav .navigation-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

#topnav .navigation-menu>li {
    float: left;
    display: block;
    position: relative;
    margin: 0 10px;
}

#topnav .navigation-menu>li>a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    background-color: transparent !important;
    font-weight: normal;
    letter-spacing: 1px;
    line-height: 24px;
    text-transform: uppercase;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    font-family: "Nunito", sans-serif;
    padding-left: 15px;
    padding-right: 15px;
}

#topnav .navigation-menu .has-submenu .menu-arrow {
    border: solid rgba(255, 255, 255, 0.8);
    border-radius: 0.5px;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    right: -1px;
    top: 30px;
}

#topnav .menu-extras {
    float: right;
}

#topnav.scroll {
    background: #ffffff;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
}

#topnav.scroll .logo .logo-light {
    display: none;
}

#topnav.scroll .logo .logo-dark {
    display: inline-block;
}

#topnav.scroll .tagline {
    display: none;
}

#topnav.scroll .has-submenu.active>a {
    color: #2f55d4;
}

#topnav.scroll .tagline-dark {
    display: none;
}

#topnav.scroll .navigation-menu>li>a {
    color: #3c4858;
}

#topnav.scroll .navigation-menu>li>.menu-arrow {
    border-color: #3c4858;
}

#topnav.scroll .navigation-menu>li:hover>a,
#topnav.scroll .navigation-menu>li.active>a {
    color: #3c4858;
}

#topnav.scroll .navigation-menu>li:hover>.menu-arrow,
#topnav.scroll .navigation-menu>li.active>.menu-arrow {
    border-color: #333;
}

.tagline {
    background: rgba(30, 30, 30, 0.1);
    font-size: 13px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.tagline .email,
.tagline .phone {
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
    padding: 18px 0;
    font-weight: 400;
    letter-spacing: 0.02em;
    padding-right: 10px;
}

.tagline .phone {
    padding-left: 10px;
    color: #f8f9fc;
}

.tagline .email a {
    transition: all 300ms;
    -webkit-transition: all 300ms;
    color: #f8f9fc;
}

.tagline .topbar-list a {
    display: block;
    color: #ffffff;
    text-align: center;
    font-weight: 400;
    margin: 0px 7px;
    line-height: 32px;
}

.tagline .topbar-list .selectize-input {
    width: 106px;
    padding: 5px 8px;
    text-align: left;
    border-radius: 5px !important;
    background: transparent !important;
}

.tagline .topbar-list .selectize-input input {
    color: #f8f9fc;
}

.tagline .topbar-list .selectize-input input::-webkit-input-placeholder {
    color: #f8f9fc;
}

.tagline .topbar-list .selectize-input input:-ms-input-placeholder {
    color: #f8f9fc;
}

.tagline .topbar-list .selectize-input input::-ms-input-placeholder {
    color: #f8f9fc;
}

.tagline .topbar-list .selectize-input input::placeholder {
    color: #f8f9fc;
}

.tagline .topbar-list .selectize-input .item {
    color: #f8f9fc;
}

.tagline .topbar-list .selectize-input:after {
    border-color: #ffffff transparent transparent transparent !important;
}

.tagline .topbar-list .selectize-input.dropdown-active:after {
    border-color: transparent transparent #ffffff transparent !important;
}

.selectize-dropdown {
    z-index: 999;
}

.logo {
    padding: 3px 0;
    line-height: 47px;
}

.mb-img {
    display: none !important;
}

/* banner */
.owl-dots {
    margin-top: 20px !important;
    line-height: .7 !important;
}

.owl-dots {
    position: absolute !important;
    bottom: 9vh !important;
    /* width: 100% !important; */
    left: 50%;
    transform: translateX(-50%);
}


.owl-dot {
    display: inline-block;
}

.owl-dot span {
    display: inline-block !important;
    width: 10px !important;
    height: 10px !important;
    margin: 0 5px !important;
    border-radius: 50% !important;
    border: 1px solid #fff;
    /* background-color: #fff; */
}

.owl-dot.active span {
    background-color: #fff;
}

/* 返回 */
#goback-l:hover {
    cursor: pointer;
}

.case-detail-info #owl-banner2 .owl-dot span {
    display: inline-block !important;
    width: 35px !important;
    height: 4px !important;
    margin: 0 5px !important;
    border-radius: 1% !important;
    /* border: 1px solid #fff; */
    background-color: #fff;
}

.case-detail-info #owl-banner2 .owl-dot.active span {
    background-color: #e30b20;
    border: none !important;
}

.case-detail-info .owl-dots {
    bottom: 3vh !important;
}

.indeshowcase .owl-dots {
    bottom: 3vh !important;
}

/* 案例小圆点 */


/* back top */
.back-to-top {
    z-index: 99;
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 33px;
    height: 33px;
    line-height: 33px;
    display: none;
    color: #3c4858;
    background-color: #ced4da;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
}

.back-to-top i {
    font-size: 16px;
}

.back-to-top:hover {
    background-color: #2f55d4;
    color: #ffffff;
}

/* 首页商品 */
.index-product {
    margin-top: 140px;
}

.product-img img {
    width: 72%;
    text-align: center;
}

.index-desc .index-product-title h2 {
    font-size: 29px;
    color: #2f55d4;
    /* font-weight: 500; */
    margin-bottom: 40px;
    margin-top: 8px;
}

.index-desc .index-product-desc h3 {
    font-size: 16px;
    color: #666;
}

.index-desc .index-product-desc p {
    font-size: 18px;
    color: #999;
    text-align: justify;
}

.index-product-btn {
    font-size: 14px;
    display: block;
    width: 200px;
    height: 45px;
    margin-top: 78px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    background-color: #2f55d4;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -o-border-radius: 50px;
    -ms-border-radius: 50px;
    box-shadow: 0px 7px 6.86px 0.14px rgba(0, 35, 204, 0.18);
    -webkit-box-shadow: 0px 7px 6.86px 0.14px rgba(0, 35, 204, 0.18);
    -moz-box-shadow: 0px 7px 6.86px 0.14px rgba(0, 35, 204, 0.18);
    -ms-box-shadow: 0px 7px 6.86px 0.14px rgba(0, 35, 204, 0.18);
    -o-box-shadow: 0px 7px 6.86px 0.14px rgba(0, 35, 204, 0.18);
    transition: all .1s;
}

.gocaselist i {
    font-size: 18px;
    color: #999;
}

.gocaselist span {
    font-size: 16px;
    color: #999;
}

.index-product-btn:hover {
    color: #fff;
    background-color: #284bc1;
}

/* 弹出层 */
.search-pop {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, .8);
    z-index: 999;
    display: none;
}

.ssearch-form {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
    background-color: #fff !important;
}

.ssearch-form input {
    width: 900px;
    height: 59px;
    position: absolute;
    left: 50%;
    top: 40%;
    margin-left: -450px;
    border-radius: 30px;
    padding-left: 30px;
    font-size: 23px;
    color: #333;
    border: none;
    outline: none;
}

.close-search {
    color: #fff;
    position: relative;
    left: 450px;
    top: -200px;
    cursor: pointer;
}

/* 主要商品分类 */
.main-product ul li {
    width: 25%;
    /* height: 350px; */
    position: relative;
    overflow: hidden;

}

.main-bg {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
    position: absolute;
    left: 0;
    top: 0;
    transition: all .4s;
}

.main-product ul li {
    float: left;
}

.main-product ul li a img {
    width: 100%;
    overflow: hidden;
    transition: all .3s;
}

.main-product {
    margin-top: 120px;
}

.main-txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -13%);
    color: #fff;
    font-weight: normal;
}

.main-txt h3 {
    font-weight: normal;
    text-align: center;
    font-size: 26px;
    width: 250px;
}

/* 解决方案 */
.solution-silder {
    width: 100%;
    margin-top: 80px;
    margin-bottom: 80px;
    /* position: relative; */
}

.solu-title {
    width: 100%;
    border-bottom: 1px solid #ccc;
}

.sole-left {
    margin-top: 120px;
    /* padding: 0 20px; */
}

.solu-title h3 {
    font-size: 25px;
    transition: all .3s;
}

.solu-title p {
    color: #999;
    font-size: 14px;
}

.solu-desc p {
    color: #777;
    line-height: 14px;
    margin-top: 12px;
}

.solution-silder .owl-dots {
    position: absolute;
    left: 76% !important;
}

.owl-theme .owl-dots .owl-dot span {
    background: none;
}

.solution-silder .owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: #fff;
}

.m-s-img {
    display: none !important;
}

.solution-silder .owl-dots span {
    border-color: #fff !important;
}

.solution-silder .owl-dot.active span {
    background-color: #fff !important;
}

/* 首页case */
.index-caselist ul li {
    width: 50%;
    float: left;
    position: relative;
    overflow: hidden;
}

.index-caselist ul li a:hover img {
    transform: scale(1.2);
}

.index-caselist ul li a img {
    width: 100%;
    height: 100%;
    transition: all .5s;
}

.index-case-desc {
    padding: 15px 0;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    height: auto;
    background-color: rgba(47, 85, 212, .7);
    text-align: center;
    display: none;
}

.index-case-desc h4 {
    font-size: 18px;
    margin-top: 10px;
    color: #fff;
    margin: 0;
    padding: 0;
}

.index-case-desc p {
    font-size: 14px;
    color: #fff;
    margin: 0;
    padding: 0;
    margin-top: 5px;
}

/* 标题 */
.m-title {
    font-size: 16px;
    display: inline-block;
    border-left: 2px solid #2f55d4;
    padding-left: 12px;
    margin-bottom: 30px;
    color: #2f55d4;
    display: none;
}

.index-news ul li {
    width: 33.3%;
    height: 100%;
    float: left;
    position: relative;
    overflow: hidden;
    background-color: transparent;
}

.index-news ul li:first-child {
    /* margin-left: 1.5%; */
}

.index-news ul li:last-child {
    /* margin-right: 1.5%; */
}

.index-news ul li:nth-child(2) {
    /* margin: 0 3.5%; */
}

.index-news ul li img {
    width: 100%;
    height: 100%;
    transition: all .3s;
}

.index-news {
    margin-top: 100px;
}

.index-news-desc {
    width: 100%;
    height: 70px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%, black 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(40%, rgba(0, 0, 0, 0.7)), color-stop(100%, black));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%, black 100%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%, black 100%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%, black 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=0);
    background: linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%, black 100%);
    padding: 10px 0 0 20px;
    box-sizing: border-box;
}

.index-news-desc h3 {
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    width: 80%;
    margin: 0;
    margin-bottom: 5px;
}

.index-news-desc p {
    font-size: 14px;
    color: #fff;
    margin: 0;
}

.index-contact {
    width: 100%;
    height: 500px;
    background: url(../images/index-contact.jpg) no-repeat center;
    margin-top: 100px;
    overflow: hidden;
}

.index-contact-content {
    text-align: center;
}

.index-contact-content h4 {
    font-size: 38px;
    color: #fff;
    font-weight: normal;
    margin-top: 140px;
    font-weight: 400;
}

.index-contact-content p {
    font-size: 19px;
    color: #fff;
    margin-top: 40px;
}

.index-contact-content a {
    display: block;
    width: 198px;
    height: 41px;
    background-color: #fff;
    margin: 50px auto 0;
    border-radius: 30px;
    text-align: center;
    line-height: 41px;
    color: #2f55d4;
}

/* 首页logo 列表 */
.index-brand-logo {
    width: 100%;
    /* height: 430px; */
    background-color: #eff2f7;
    overflow: hidden;
    padding: 42px 0 42px;
}

/* 品牌logo */

.inner-logoarea {
    /* width: 1200px; */
    /* margin: 0 auto; */
}

.inner-logoarea {
    margin-top: 55px;
    padding-left: 0;
    padding-right: 0;
}

.inner-logoarea ul li {
    width: 14%;
    /* height: 60px; */
    background-color: #fff;
    text-align: center;
    float: left;
    margin-right: 3%;
    margin-bottom: 60px;
    cursor: pointer;
    transition: all .3s;
    overflow: hidden;
}

.inner-logoarea ul li img {
    transition: all .3s;
}

.inner-logoarea ul li:nth-child(6) {
    margin-right: 0;
}

.inner-logoarea ul li:nth-child(12) {
    margin-right: 0;
}

.inner-logoarea ul li:hover {
    z-index: 2;
    -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, .1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    -webkit-transform: translate3d(0, -2px, 0);
    transform: translate3d(0, -2px, 0);
}

.fix-right {
    position: fixed;
    right: 0;
    bottom: 150px;
    z-index: 999;

}

.fix-right a {
    display: block;
    width: 60px;
    height: 60px;
    position: relative;
    /* background-color: orange; */
    background-color: rgba(255, 255, 255, .8);
}

.fix-right a.myphone p {
    background-image: url(../images/tel-ix.png);
    background-repeat: no-repeat;
    background-position: 20px center;
    width: 260px;
    height: 60px;
    padding-left: 60px;
    position: absolute;
    left: 0;
    top: 0;
    /* background-color: orange; */
    line-height: 60px;
    /* display: none; */
    transition: all .3s;
    font-size: 14px;
}

.fix-right a.myphone:hover p {
    background-image: url(../images/tel-ix-h.png);
    background-color: rgba(0, 0, 0, .5);
    color: #fff;
}

.fix-right a.qqico {
    transition: all .3s;
}

.fix-right a.qqico p {
    background-image: url(../images/qq-ix.png);
    background-repeat: no-repeat;
    background-position: 20px center;
    width: 240px;
    height: 60px;
    padding-left: 60px;
    position: absolute;
    left: 0;
    top: 0;
    /* background-color: orange; */
    line-height: 60px;
    /* display: none; */
    transition: all .3s;
    font-size: 14px;
}

.fix-right a.qqico:hover {
    background-color: #ddd;
}

.fix-right a.qqico:hover p {
    background-image: url(../images/qq-ix-h.png);
}

.fix-right a.mywx p {
    background-image: url(../images/wx-ix.png);
    background-repeat: no-repeat;
    background-position: 20px center;
    width: 260px;
    height: 60px;
    padding-left: 60px;
    position: absolute;
    left: 0;
    top: 0;
    /* background-color: orange; */
    line-height: 60px;
    /* display: none; */
    transition: all .3s;
    font-size: 14px;
}

.fix-right a.mywx:hover p {
    background-image: url(../images/wx-ix-h.png);
    background-color: rgba(0, 0, 0, .5);
    color: #fff;
}

.mywx p img {
    margin-right: 15px;
}

.mywx p i {

    display: block;
    /* font-style: normal; */
    font-size: 12px;
    line-height: 10px;
    font-style: normal;
    line-height: 18px;
}

.fi-line {
    margin-top: 10px;
}

.fix-right a.gotops p {
    background-image: url(../images/top-ix.png);
    background-repeat: no-repeat;
    background-position: 21px center;
    width: 240px;
    height: 60px;
    padding-left: 60px;
    position: absolute;
    left: 0;
    top: 0;
    /* background-color: orange; */
    line-height: 60px;
    /* display: none; */
    transition: all .3s;
    font-size: 14px;
}


.footer-top {
    background-color: #1d2f45;
}

.inner-footer-top {
    width: 1200px;
    margin: 0 auto;
    padding: 30px 0 30px;
}

.yq-links h4 {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.yq-links ul li {
    float: left;
    margin-right: 15px;
}

.yq-links ul li a {
    font-size: 14px;
    color: #fff;
}

.yq-logo {
    margin-top: 20px;
}

.f-top-left {
    float: left;
}

.f-top-right {
    float: right;
}

.qrcode {
    float: left;
    width: 11%;
}

.addressinfo {
    width: 80%;
    float: left;
    margin-left: 37px;
}

.addressinfo p {
    color: #fff;
    font-size: 14px;
    margin: 0;
    padding: 0;
    line-height: 28px;
}

.f-top-left {
    margin-top: 20px;
    width: 50%;
}

.qr-add {
    margin-top: 20px;
}

.f-top-right h4 {
    font-size: 14px;
    color: #fff;
}

.f-top-right input {
    display: block;
    width: 450px;
    height: 25px;
    border: none;
    margin-top: 20px;
    padding: 18px;
    box-sizing: border-box;
    font-size: 14px;
}

.f-top-right button {
    width: 100px;
    height: 30px;
    font-size: 14px;
    color: #333;
    border: none;
    background-color: #fff;
    margin-top: 30px;
}

.footer-bottom {
    background-color: #142132;
    padding: 18px 0 18px;
}

.inner-fb {
    width: 1200px;
    margin: 0 auto;
}

.footer-bottom {
    color: #fff;
    font-size: 13px;
}

.footer-bottom .container {
    padding-left: 0;
    padding-right: 0;
}

.footer-bottom p {
    margin-bottom: 0;
    float: left;
}

.footer-bottom a {
    font-size: 13px;
    color: #fff;
    float: right;
}

.in-top {
    padding: 46px 0;
}

.in-footer-b {
    padding-left: 0;
    padding-right: 0;
}

/* 产品中心 */
.secondbg {
    width: 100%;
    position: relative;
}

.secondbg img {
    width: 100%;
}

.inner-second-title {
    position: absolute;
    left: 0px;
    width: 100%;
    top: 45%;
    margin-top: -20px;
    z-index: 5;
    text-align: center;
}

.inner-second-title h4 {
    font-size: 50px;
    color: #fff;
    opacity: 0.6;
    padding-bottom: 10px;
    font-weight: bold;
}

.inner-second-title h5 {
    color: #fff;
    font-weight: bold;
}

.inner-second-title h5::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: #fff;
    margin: 0 auto;
    margin-top: 15px;
}

/* 商品中心 */
.product-main {
    background-color: #F9F9F9;
    /* overflow: hidden; */
    /* overflow-y: auto; */
}

.inner-product-main {
    padding-left: 0;
    padding-right: 0;
}

.left-menu-p {
    padding-left: 0;
}

.l-menu-title {
    width: 100%;
    background-color: #014CAD;
    text-align: center;
    color: #fff;
    padding: 12px 0;
}

.inner-product-main {
    padding-top: 77px;
    padding-bottom: 77px;
}

.l-menu-title h5 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 0;
}

.right-product-list {
    padding-left: 0;
    padding-right: 0;
}

.l-menu-title p {
    font-size: 14px;
    margin-bottom: 0;
}

.left-menu-p ul li a {
    display: block;
    width: 100%;
    background-color: #EFF2F7;
    text-align: center;
    padding: 12px 0;
    color: #545454;
    font-size: 16px;
    margin-top: 14px;
    transition: all .3s;
}

.left-menu-p ul li a:hover {
    background-color: #014CAD;
    color: #fff;
}

.right-product-list ul.product-box li {
    width: 49%;
    display: inline-block;
    margin-bottom: 20px;
    transition: all .3s;

}

.products-item {
    position: relative;
    padding: 40px 10px;
    display: block;
    background: #fff;
    background-size: auto 100%;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    margin: 0 12px 0px;
    transition: all .3s;
}

.left-p-img {
    float: left;
    width: 60%;
    height: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.left-p-img img {
    height: auto;
    transition: all .3s;
    display: block;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
}

.left-p-img img::before {
    padding-top: 50px;
}

.case-img-i img {
    max-height: 288px !important;
}

.right-txt {
    float: right;
    /*margin-left: 25px;*/
    margin-top: 10px;
    width: 36%;
}

.right-txt h4 {
    font-size: 15px;
    color: #014CAD;
    width: 100%;
}

.right-txt .caps {
    font-size: 13px;
    color: #999;
    /*width: 200px;*/
    width: 100%;
    overflow: hidden;
    max-height: 60px;
}
.right-txt .caps p{
    margin-bottom: 0;
}
.more-icon {
    position: absolute;
    bottom: 29px;
    right: 29px;
    font-size: 20px;
    color: #014CAD;
}

.products-item:hover {
    z-index: 2;
    -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, .1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .1);
    -webkit-transform: translate3d(0, -2px, 0);
    transform: translate3d(0, -2px, 0);
}

.products-item:hover .left-p-img img {
    -webkit-transform: translate3d(0, -8px, 0);
    transform: translate3d(0, -8px, 0);
}

.left-menu-p ul li a.menu-active {
    background-color: #014CAD;
    color: #fff;
}

.pagenext-p {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-bottom: 30px;
    margin-top: 40px;
}

.pagenext-p a {
    font-size: 14px;
    color: #999 !important;
    outline: none;
}

.page-item.active .page-link {
    background-color: #014CAD;
    color: #fff !important;
}

.page-item.active .page-link {
    border-color: #014CAD;
}

.mb-list-menu {
    display: none;
}

.floor1 img {
    width: 100%;
}

.w120 {
    width: 100%;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.floor2 .floor2-img {
    margin-top: 0;
    position: absolute;
    top: 0;
    right: 0;
}

.floor2 .global-txt {
    position: absolute;
    top: 0;
    left: 0;
}

.floor3 .global-txt {
    position: absolute;
    top: 0;
    right: 0;
}

.floor3 .floor3-img {
    position: absolute;
    top: 0;
    left: 0;
}

.floor1-img {
    width: 50%;
    height: 100%;
    float: left;
    display: flex;
    align-items: center;
    justify-self: center;
}

.floor1 .prod-fwrap {
    min-height: 750px;
}

.floor1 img {
    width: 100%;
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.floor1-txt {
    width: 50%;
    float: left;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.floor1-txt h3 {
    margin-top: 26px;
    font-size: 28px;
    color: #fff;
    /*color: #333;*/
    font-weight: bold;
}
.go-title{
    /*margin: 0 auto;*/
}
.floor1-txt p {
    font-size: 18px;
    color: #fff;
    /*color: #333;*/
}

.bg-c {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.prod-fwrap {
    /*min-height: 100vh;*/
    min-height: 780px;
    /*height: auto;*/
    /*padding-top: 150px;*/
    /*padding-bottom: 150px;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.l-t {
    float: left;
}

.r-t {
    float: right;
}

.r-t p,
.r-t a {
    display: inline-block;
    color: #999;
    font-size: 15px;
}

.r-t i {
    font-size: 22px;
    vertical-align: middle;
    color: #999;
}

.l-t p {
    font-size: 15px;
    color: #014CAD;
}

.l-t p::after {
    content: '';
    display: block;
    height: 2px;
    background-color: #014CAD;
    margin-top: 5px;
}

.product-detail-title {
    padding: 15px 0 0 0;
}

.global-txt {
    width: 50%;
    height: 100%;
    /*display: inline-block;*/
    display: flex;
    background-color: #14317b;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}

.g-title {
    position: relative;
}

.g-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background-color: #ffffff;
}

.g-title span {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 120px;
    line-height: 1;
    color: #f5f5f5;
    /* font-weight: bold; */
}

.g-title p {
    position: relative;
    /*padding-top: 39px;*/
    font-size: 24px;
    font-weight: bold;
    line-height: 90px;
    letter-spacing: .025em;
    /*color: #084397;*/
    color: #ffffff;
    font-weight: 600;
}

.g-desc {
    margin-top: 1.25em;
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
}

.global-txt {
    /*min-height: 480px;*/
    /*height: inherit;*/
}

.go-title {
    max-width: 410px;
    height: auto;
    /*min-height: inherit;*/
    /*height: inherit;*/
    /*margin-right: auto;*/
    /*margin-left: auto;*/
    font-family: 'Source Han Sans CN', 'PingFang SC', 'Arial', 'Microsoft YaHei', '微软雅黑', SimSun, Heiti, sans-serif;
    ;
}

.floor2-img {
    width: 50%;
    height: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    /*display: inline-block;*/
    vertical-align: middle;
}

.floor2-img img {
    height: 100%;
    display: block;
    /*max-width: 100%;*/
}

.floor2 .prod-fwrap {
    padding-top: 0px;
}

.floor3-img {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    /*display: inline-block;*/
    vertical-align: middle;
}

.floor3-img img {
    display: block;
    margin: 0 auto;
    height: 100%;
}

.product-params {
    width: 100%;
    height: auto;
    background-color: #EFF2F7;
    /*padding: 99px 0;*/
    margin-bottom: 100px;
}


/* 产品参数 */
.p-params table {
    text-overflow: ellipsis !important;
    white-space: nowrap;
    overflow: hidden;
}

.p-params table tr:nth-child(odd) {
    background-color: #fff;
}

.p-params table tr td {
    border: none;
    font-size: 15px;
    padding: 19px 0;
    text-align: center;
}

.p-params table tr td:first-child {
    color: #0056B3;
}

.p-params .product-detail-title .l-t {
    margin-bottom: 20px;
}

/* 新闻 */
.news-content ul li {
    position: relative;
    padding-bottom: 40px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 60px;
    transition: all .3s;
}

.news-content ul li:hover {
    webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
}

.news-content ul li a:hover .news-img img {
    transform: scale(1.5);
}

.news-content ul li:first-child {
    width: 762px;
    height: 442px;
    /* background-color: orange; */
    /* border-bottom: 1px solid #ccc; */
    /* padding-bottom: 60px; */
}

.news-content ul li:first-child .news-title {
    padding: 20px 20px;
    background-color: rgba(0, 0, 0, .5);
}

.news-content ul li:first-child .news-title h3 {
    font-size: 16px;
    color: #fff;
    font-weight: bold;
}

.news-content ul li:first-child .news-desc {
    display: none;
}

.news-content ul li:first-child {
    margin-right: 42px;
    padding-bottom: 0;
}

.news-content ul li:first-child .news-time {
    display: none;
}

.news-content ul li:first-child .news-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

}

.news-content {
    margin-top: 60px;
}

.news-content ul li:first-child .news-img img {
    width: 100%;
    height: 100%;
    transition: all 1.9s;
}

.news-content ul li .news-img img {
    transition: all 1.9s;
    width: 100%;
    height: 250px;
}

.news-content ul li {
    width: 360px;
    float: left;
    overflow: hidden;
}

.news-content ul li .news-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.news-content ul li:first-child .news-img {
    height: 100%;
}

.news-content ul li .news-title h3 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    padding-top: 30px;
    padding-bottom: 7px;
}

.news-content ul li:first-child .news-title h3 {
    padding: 0;
}

.news-content ul li .news-desc p {
    font-size: 12px;
    line-height: 24px;
    color: #949494;
}

.news-content ul li .news-time span {
    font-size: 12px;
    color: #949494;
    float: left;
}

.news-content ul li .news-time i {
    float: right;
    color: #666;
    font-weight: 400;
}

/* 新闻内容区域 */
.news-detail-content {
    margin-top: 60px;
    margin-bottom: 120px;
}

.news-d-l .n-d-t h2 {
    font-size: 22px;
    color: #333;
    font-weight: bold;
    text-align: justify;
}

.news-d-l .n-d-t p {
    font-size: 14px;
    color: #bfbfbf;

}

.n-d-t {
    padding: 12px 0;
    border-bottom: #e6e6e6 solid 1px;
    margin-bottom: 40px;
}

.n-d-c p {
    font-size: 15px;
    line-height: 36px;
    color: #999;
    text-align: justify;
}

.n-d-c img {
    max-width: 100%;
    padding: 20px 0;
}

.nex-p {
    margin-top: 40px;
    font-size: 14px;
}

.nex-p span {
    font-weight: bold;
}

.l-next {
    float: left;
}

.r-next a {
    display: block;
    width: 120px;
    height: 37px;
    background-color: #0056B3;
    line-height: 37px;
    font-size: 14px;
    color: #fff;
    border-radius: 30px;
    text-align: center;
    text-align: center;
    vertical-align: middle;
    margin-top: 20px;
}

.nex-p .l-next a {
    vertical-align: middle;
    display: inline-block;
    width: 75%;
    font-size: 14px;
    color: #666;


}

.r-next {
    float: right;
}

.nex-p div {
    margin: 10px 0;
}

.tjxw-title {
    font-size: 16px;
    color: #014CAD;
    border-left: 3px solid #014CAD;
    padding-left: 10px;
}

.news-d-l {
    padding-right: 60px;
}

.r-list {
    padding-left: 60px;
    border-left: #e6e6e6 solid 1px;
}

.tj-t h3 {
    font-size: 15px;
    color: #333;
    margin-top: 20px;
    font-weight: bold;
    text-align: justify;
    line-height: 24px;
}

.tj-time span {
    font-size: 14px;
    color: #999;
}

.r-list ul {
    margin-top: 30px;
}

.r-list ul li {
    width: 100%;
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
    margin-bottom: 60px;
}

.r-list ul li img {
    width: 100%;
    height: 220px;
}

.case-img-i {
    width: 100% !important;
    margin-bottom: 10px;
    height: auto !important;
    max-height: 280px;
}

.case-li .right-txt {
    margin-left: 0;
}

.case-li .right-txt p {
    margin-bottom: 0;
    color: #0056B3;
}

.case-li .right-txt h4 {
    color: #333;
}

.b-line {
    width: 0%;
    height: 2px;
    background-color: #014CAD;
    position: relative;
    top: 1px;
}

/* 案例详情 */
.case-detail-title p {
    font-size: 12px;
    color: #999;
    margin: 0;
}

.case-detail-info {
    margin-top: 66px;
}

.case-detail-title h3 {
    font-size: 20px;
    color: #333;
}

.case-content-swiper {
    margin-top: 40px;
}

.case-contnet-swiper-sesc {
    margin-top: 40px;
    margin-bottom: 60px;
}

.case-contnet-swiper-sesc ul {
    display: table;
    text-align: center;
    margin: 0 auto;
}

.case-contnet-swiper-sesc ul li {
    float: left;
    /* display: block; */
    padding: 0 15px;
    /* text-align: center; */
    /* margin: 0 auto; */
}

.case-contnet-swiper-sesc ul .c-title {
    color: #0056B3;
}

.case-contnet-swiper-sesc ul .models {
    color: #999;
}

.case-detail-xgtj {
    background-color: #F5F8FE;
    padding: 60px 0 70px;
}

.case-detail-xgtj ul li {
    width: 50%;
    float: left;
}

.case-detail-xgtj .container {
    padding-left: 0;
    padding-right: 0;
}

.yq-links {
    margin-bottom: 15px;
}

.ab-title h5 {
    font-size: 19px;
    color: #0056B3;
    margin-bottom: 0;
    font-weight: bold;
}

.ab-title p {
    font-size: 16px;
    color: #999;
}

/* 关于公司 */
.gstxt p {
    font-size: 15px;
    text-align: justify;
    text-indent: 2em;
    color: #3E3E3E;
}

.gstxt {
    padding-left: 0px;
    padding-right: 0px;
    font-size: 14px;
    padding-right: 40px;
}

.about-main {
    margin-top: 60px;
}

.ab-title {
    margin-bottom: 20px;
}

.company-img img {
    width: 100%;
}

.gsry {
    margin-top: 50px;
}

.rybg {
    /* margin-top: 30px; */
  /*  height: 567px;*/
}
.top-banners{
    width: 100%;
    height: auto;
    /*max-height: 630px;*/
}
.top-banners .swiper-container{
    width: 100%;
    height: 100%;
}
.top-banners .swiper-slide{
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-banners .swiper-button-next{
    right: 130px;
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 100px;
}
.top-banners .swiper-button-next::after{
    content: "";
    color: #ffffff;
    font-size: 32px;
}
.top-banners .swiper-button-prev{
    left: 130px;
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 100px;
}
.top-banners .swiper-button-prev::after{
    content: "";
    color: #ffffff;
    font-size: 32px;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet{
    background-color: transparent;
    border: solid 1px #ffffff;
    opacity: 1;
}
.top-banners .swiper-pagination-bullets{
    bottom: 50px!important;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background-color: #ffffff;
    border: solid 1px #ffffff;
}
.top-banners .swiper-slide img{
    min-height: 100%;
    min-width: 100%;
}
.rybg .container {
    padding-left: 0;
    padding-right: 0;
}

.slider2 {}

.bgs {
    margin-top: 100px;
}

.slide {
    margin: 0 3px;
}
.slide img{
    border-radius: 4px;
}
.bx-wrapper .bx-viewport {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: 0 0 0px #ccc;
    border: none !important;
    left: -5px;
    background: none !important;
    -webkit-transform: translatez(0);
    -moz-transform: translatez(0);
    -ms-transform: translatez(0);
    -o-transform: translatez(0);
    transform: translatez(0);
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
    background-color: #fff;
}

.fyzj ul li {
    /* float: left; */
    width: 100%;
    /* margin-bottom: 40px; */
    cursor: pointer;
    font-size: 14px;
    text-align: left;
    margin-bottom: 20px;
}

.fyzj ul li img {
    margin-left: 5px;
    text-align: center;
}

.fyzj ul li p {

    margin-top: 10px;
    color: #333;
}

.fyzj ul li i {
    vertical-align: middle;
    margin-top: 20px;
}

.fyzj ul li .l-con {}

.fyzj ul li h3 {
    font-size: 14px;
    font-weight: bold;
}

.fyzj ul li p {
    font-size: 14px;
    color: #444;
}

.hdb {
    padding: 20px 0;
    position: relative;
    /* top: 74px; */

    background-color: #f6f7f9;
    /* border-bottom: 1px solid #ccc; */
    /* margin-bottom: 90px; */
    display: none;
    padding: 15px 15px 15px 10px;
}

.title {
    font-size: 14px !important;
}

.content {
    font-size: 14px !important;
}

.fuzc {
    margin-top: 50px;
}

.lyform {
    background-color: #eff2f7;
    padding: 90px 0 150px 0;
}

.lyf input {
    border: none;
    outline: none;
    width: 100%;
    padding: 15px;
    /* display: inline-block; */
    font-size: 14px;
    color: #999;
    margin-top: 2%;
}

.lyf textarea {
    width: 100%;
    padding: 15px;
    border: none;
    outline: none;
    height: 150px;
    margin-top: 2%;
    font-size: 14px;
    color: #999;
    resize: none;
}

.about-mains {
    margin-top: 100px;
}

.lyf button {
    width: 100%;
    padding: 15px;
    font-size: 14px;
    color: #444;
    border: none;
    outline: none;
    background-color: #fff;
    margin-top: 1%;
    transition: all .3s;
    margin-top: 20px;
}

.lyf button:hover {
    background-color: #0056B3;
    color: #fff;
}


.b-menu {
    width: 85%;
    margin: 0 10%;
    /* height: 60px; */
    /* padding: 10px; */
    background-color: rgba(29, 29, 29, 0.9);
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.5);
    border-radius: 80px;
    position: fixed;
    bottom: 22px;
    z-index: 999;
    left: 0;
    right: 0;
    display: none !important;
}

.b-menu a {
    width: 33%;
    float: left;
    height: 100%;
    line-height: 40px;
    text-align: center;
    color: #e40807;
    font-size: 18px;
    position: relative;
    color: #fff;
    display: inline-block;
}

.tels {
    border-left: 1px solid rgba(255, 255, 255, .09);
    border-right: 1px solid rgba(255, 255, 255, .09);
}

.b-m {
    display: none;
}

.n-d-c table {
    width: 100%;
}

@media (min-width: 992px) {
    #topnav .navigation-menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    #topnav .navigation-menu>.has-submenu>.submenu>.has-submenu>.submenu::before {
        top: 20px;
        margin-left: 11px;
        -webkit-box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.15);
        box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.15);
        border-color: transparent #ffffff #ffffff transparent;
    }

    #topnav .navigation-menu>li .submenu>li .submenu {
        left: 106%;
        top: 0;
        margin-left: 10px;
        margin-top: -1px;
    }

    #topnav .navigation-menu>li>a {
        padding-top: 25px;
        padding-bottom: 25px;
        min-height: 62px;
    }

    #topnav .navigation-menu>li:hover>.menu-arrow {
        border-color: #ffffff;
    }

    #topnav .navigation-menu>li:hover>a,
    #topnav .navigation-menu>li.active>a {
        color: #ffffff;
    }

    #topnav .navigation-menu>li .submenu {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        padding: 15px 0;
        list-style: none;
        min-width: 180px;
        visibility: hidden;
        opacity: 0;
        margin-top: 10px;
        -webkit-transition: all .2s ease;
        transition: all .2s ease;
        border-radius: 10px;
        background-color: #ffffff;
        -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
    }

    #topnav .navigation-menu>li .submenu:before {
        content: "";
        position: absolute;
        top: 2px;
        margin-left: 45px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        border: 7px solid #495057;
        border-color: transparent transparent #ffffff #ffffff;
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
        -webkit-box-shadow: -2px 2px 2px -1px rgba(0, 0, 0, 0.15);
        box-shadow: -2px 2px 2px -1px rgba(0, 0, 0, 0.15);
    }

    #topnav .navigation-menu>li .submenu li {
        position: relative;
    }

    #topnav .navigation-menu>li .submenu li a {
        display: block;
        padding: 10px 20px;
        clear: both;
        white-space: nowrap;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        font-weight: normal;
        color: #3c4858;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

    #topnav .navigation-menu>li .submenu li a:hover {
        color: #2f55d4;
    }

    #topnav .navigation-menu>li .submenu li ul {
        list-style: none;
        padding-left: 0;
        margin: 0;
    }

    #topnav .navigation-menu>li .submenu.megamenu {
        white-space: nowrap;
        width: auto;
    }

    #topnav .navigation-menu>li .submenu.megamenu>li {
        overflow: hidden;
        width: 180px;
        display: inline-block;
        vertical-align: top;
    }

    #topnav .navigation-menu>li .submenu.megamenu>li .submenu {
        left: 100%;
        top: 0;
        margin-left: 10px;
        margin-top: -1px;
    }

    #topnav .navigation-menu>li.last-elements .submenu {
        left: auto;
        right: 0;
    }

    #topnav .navigation-menu>li.last-elements .submenu>li.has-submenu .submenu {
        left: auto;
        right: 100%;
        margin-left: 0;
        margin-right: 10px;
    }

    #topnav .navbar-toggle {
        display: none;
    }

    #topnav #navigation {
        display: block !important;
    }

    #topnav.scroll {
        top: 0;
    }

    #topnav.scroll .navigation-menu>li>a {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    #topnav.scroll-active .navigation-menu>li>a {
        padding-top: 25px;
        padding-bottom: 25px;
    }
}

/*@media (max-width: 991px) {*/
@media (max-width: 991px) {
    .global-txt {
        min-height: 240px;
    }

    .pcnone {
        display: none !important;
    }

    .index-top-swiper .owl-dots {
        bottom: 4vh !important;
    }

    .fix-right {
        display: none !important;
    }

    .back-to-top {
        display: block !important;
    }

    .case-detail-info #owl-banner2 .owl-dot span {
        display: inline-block !important;
        width: 20px !important;
        height: 4px !important;
        margin: 0 5px !important;
        border-radius: 1% !important;
        /* border: 1px solid #fff; */
        background-color: #fff;
    }

    .case-detail-info #owl-banner2 .owl-dot.active span {
        background-color: #e30b20;
        border: none !important;
    }

    .hxxjj {
        display: none !important;
    }

    .pb-1 {
        background-image: url(../images/m-pb-1.png) !important;
        /* background-size: 100% 100%; */
        height: 390px !important;
        padding: 0 !important;
    }

    .pb-2 {
        background-image: url(../images/m-pb-2.png) !important;
        /* background-size: 100% 100%; */
        height: 390px !important;
        padding: 0 !important;
    }

    .pb-3 {
        background-image: url(../images/m-pb-3.png) !important;
        /* background-size: 100% 100%; */
        height: 390px !important;
        padding: 0 !important;
    }

    .pb-4 {
        background-image: url(../images/m-pb-4.png) !important;
        /* background-size: 100% 100%; */
        height: 390px !important;
        padding: 0 !important;
    }

    .pb-p {
        padding: 0 !important;
        padding-top: 30px !important;
    }

    .aj-i {
        padding: 0 !important;
    }

    /* news */
    .led-t1 {
        font-size: 19px !important;
        font-weight: bold;
        margin-bottom: 5px !important;
    }

    .led-t2 {
        font-size: 13px !important;
    }

    .led-bgt {
        top: 13% !important;
        padding: 0 2%;
    }

    .news-bg1 {
        background-image: url(../images/bg-1.png) !important;
        background-size: 100% 100%;
        color: #333 !important;

    }

    .news-bg2 {
        background-image: url(../images/bg-2.png) !important;
        background-size: 100% 100%;
        color: #333 !important;
        margin-top: 30px !important;
    }

    .news-bg3 {
        background-image: url(../images/bg-3.png) !important;
        background-size: 100% 100%;
        color: #333 !important;
        margin-top: 30px !important;
    }

    .news-bg4 {
        background-image: url(../images/bg-4.png) !important;
        background-size: 100% 100%;
        color: #333 !important;
        margin-top: 30px !important;
    }

    .news-bg5 {
        background-image: url(../images/bg-5.png) !important;
        background-size: 100% 100%;
        color: #333 !important;
        margin-top: 30px !important;
    }

    .news-t1 {
        padding-right: 0 !important;
        padding: 0 2% !important;
    }

    .news-t1-2 {
        font-size: 14px !important;
        padding: 0 2% !important;
    }

    .news-t1-1 {
        /* font-size: 18px !important; */
        padding: 0 2% !important;
        font-size: 16px !important;
    }

    .t2-t {
        padding-left: 0 !important;
    }

    .axbg ul li img {
        width: 60px !important;
        height: 60px !important;
    }

    .axbg ul {
        display: flex;
        justify-content: center;
        width: auto !important;
    }

    .axbg ul li p {
        font-size: 12px !important;
    }

    .axbg ul li {
        margin: 0 !important;
    }

    .tti-1 {
        margin-top: 40px !important;
        font-size: 18px !important;
    }

    .tti-2 {
        font-size: 14px !important;
    }

    .axbg ul li.auto-li {
        margin: 0 10px !important;
    }

    /* news */
    .b-m {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }

    .b-m a {
        text-align: center;
        color: #666;
    }

    .b-m a i {
        margin-top: 4px;
        font-size: 22px;
        color: #2f55d4;
        display: inline-block;
    }

    .b-m a i.tels {
        animation: move 1.5s 0s infinite;
        -webkit-animation: move 1.5s 0s infinite;
        transform-origin: bottom;
        -webkit-transform-origin: bottom;
    }

    @keyframes move {

        0%,
        65% {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
        }

        70% {
            -webkit-transform: rotate(6deg);
            transform: rotate(6deg);
        }

        75% {
            -webkit-transform: rotate(-6deg);
            transform: rotate(-6deg);
        }

        80% {
            -webkit-transform: rotate(6deg);
            transform: rotate(6deg);
        }

        85% {
            -webkit-transform: rotate(-6deg);
            transform: rotate(-6deg);
        }

        90% {
            -webkit-transform: rotate(6deg);
            transform: rotate(6deg);
        }

        95% {
            -webkit-transform: rotate(-6deg);
            transform: rotate(-6deg);
        }

        100% {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
        }
    }

    @-webkit-keyframes move {

        0%,
        65% {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
        }

        70% {
            -webkit-transform: rotate(6deg);
            transform: rotate(6deg);
        }

        75% {
            -webkit-transform: rotate(-6deg);
            transform: rotate(-6deg);
        }

        80% {
            -webkit-transform: rotate(6deg);
            transform: rotate(6deg);
        }

        85% {
            -webkit-transform: rotate(-6deg);
            transform: rotate(-6deg);
        }

        90% {
            -webkit-transform: rotate(6deg);
            transform: rotate(6deg);
        }

        95% {
            -webkit-transform: rotate(-6deg);
            transform: rotate(-6deg);
        }

        100% {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
        }
    }

    .b-m p {
        font-size: 13px;
    }

    .b-menu {
        display: block !important;
    }

    .back-to-top {
        /* display: none !important; */
        bottom: 80px !important;
    }

    .index-news ul li:first-child {
        margin-left: 0%;
    }

    .index-news ul li:last-child {
        margin-right: 0%;
    }

    .index-news ul li:nth-child(2) {
        margin-left: 0%;
        margin-right: 0%;
        margin-bottom: 20px;
    }

    .about-mains {
        margin-top: 40px;
    }

    .about-mains .ab-title p {
        margin-bottom: 40px;
    }

    #container2 {
        margin-top: 30px;
    }

    .lyform {
        padding: 30px 0;
    }

    #container2 {
        height: 350px !important;
        margin-bottom: 30px !important;
    }

    .ab-title h5 {
        font-size: 16px;
    }

    .ab-title p {
        font-size: 14px;
    }

    .fuzc {
        padding: 0 4%;
        margin-bottom: 30px !important;
        margin-top: 10px !important;
    }

    .gstxt p {
        text-indent: 2em;
        font-size: 14px;
        color: #444;
    }

    .ab-title {
        margin-bottom: 10px;
    }

    .ab-title p {
        margin-bottom: 5px;
    }

    .about-main {
        margin-top: 28px;
    }

    .fyzj ul li h3 {
        font-size: 12px;
    }

    .fyzj ul li p {
        font-size: 12px;
        color: #444;
        line-height: 22px;
    }

    .fyzj ul {
        width: 100% !important;
        padding-right: 0 !important;
    }

    .rybg {
        display: none;
    }

    .about-main {
        padding: 0 4%;
    }

    .gstxt {
        padding-right: 0;
    }

    .company-img {
        padding-left: 0;
        padding-right: 0;
    }

    .fyzj {
        padding-left: 0;
        padding-right: 0;
        margin-top: 30px;
    }

    .gsry {
        display: none;
    }

    .case-detail-info {
        margin-top: 30px;
    }

    .case-content-swiper {
        margin-top: 20px;
    }

    .case-detail-xgtj ul li {
        width: 100%;
        float: none;
        margin-bottom: 30px;
    }

    .case-img-i {
        width: 100% !important;
    }

    .case-contnet-swiper-sesc ul {
        display: block;
        text-align: left;
    }

    .case-contnet-swiper-sesc ul li span {
        font-size: 13px;
    }

    .case-detail-title h3 {
        font-size: 18px;
    }

    .gocaselist span {
        font-size: 16px !important;
    }

    .gocaselist i {
        font-size: 16px !important;
    }

    .case-detail-xgtj {
        padding: 30px 0 30px;
    }

    .case-contnet-swiper-sesc {
        margin-top: 25px;
        margin-bottom: 30px;
    }

    .n-d-c p {
        font-size: 14px;
    }

    .case-contnet-swiper-sesc ul li {
        padding: 0;
        float: none;
    }

    /* .inner-logoarea ul{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
    } */
    /* .inner-logoarea ul li img{
        width: 100%;
    } */
    .footer-box {
        margin-bottom: 60px;
    }

    .b-m {
        border-top: 1px solid #e6e6e6;
        padding-top: 3px;
        position: fixed !important;
        width: 100%;
        left: 0;
        bottom: 0;
        /* display: block !important; */
        /* margin-top: 30px; */
        z-index: 999;
        height: 66px;
        background-color: #ffffff;
        -webkit-box-shadow: 0rem -0.01333333rem 0.04rem 0.00453333rem rgba(140, 140, 140, 0.26);
        box-shadow: 0rem -0.01333333rem 0.04rem 0.00453333rem rgba(140, 140, 140, 0.26);
    }

    .l-next {
        float: none;
    }

    .news-d-l .n-d-t h2 {
        font-size: 16px;
    }

    .news-detail-content {
        margin-top: 20px;
    }

    .news-d-l .n-d-t p {
        font-size: 13px;
    }

    .news-detail-content {
        padding: 0 4%;
    }

    .news-detail-content .container {
        padding-left: 0;
        padding-right: 0;
    }

    .news-d-l {
        padding: 0 4%;
        width: 100%;
    }

    /* .news-d-l{
        padding-right: 0;
    } */
    .r-list {
        display: none;
    }

    .r-next {
        display: none;
    }

    .news-detail-content {
        margin-bottom: 60px;
    }

    .news-content ul li:first-child .news-img {
        height: 250px;
        width: 100%;
    }

    .news-content ul li:first-child .news-title {
        position: static;

    }

    .news-content ul li:first-child .news-title h3 {
        color: #333;
    }

    .news-content ul li:first-child .news-desc {
        display: block !important;
    }

    .news-content ul li:first-child .news-time {
        display: block !important;
    }

    .news-content ul li:first-child {
        height: auto;
        padding-bottom: 20px;
    }

    .news-content ul li:first-child .news-title {
        padding: 0;
        padding-top: 30px;
        padding-bottom: 7px;
        background-color: #fff;
    }

    /* 新闻 */
    .news-content {
        margin-top: 12px;
    }

    .news-content ul li .news-img img {
        width: 100%;
        height: 100%;
    }

    .news-content ul li:first-child {
        width: 100%;
        /* height: 250px; */
        margin-top: 40px;
    }

    .news-content ul li {
        width: 100%;
        /* height: 250px; */
        margin-right: 0 !important;
        margin-left: 0 !important;
        margin-bottom: 40px;
    }

    .news-content ul li {
        padding-bottom: 20px;
    }

    .news-content ul li {
        /* margin-top: 40px; */
    }

    .product-params {
        padding: 30px 0 !important;
    }

    .floor2-img {
        width: 100%;
        margin-top: 20px;
    }

    .floor3-img {
        width: 100%;
        margin-bottom: 20px;
    }

    .floor3 .prod-fwrap {
        /*padding-top: 60px;*/
    }

    .p-params table tr td {
        padding: 20px 20px;
        font-size: 14px;
    }

    .product-params {
        padding: 50px 0;
    }

    .floor2-img img {
        width: 100%;
    }

    .floor3-img img {
        max-width: 100%;
    }

    .g-title p {
        padding-top: 30px;
    }

    .global-txt {
        width: 100%;
    }

    .g-title span {
        font-size: 110px;
    }

    .g-title p {
        font-size: 18px;
    }

    .g-desc {
        font-size: 14px;
    }

    .floor2 .prod-fwrap {
        /*padding-top: 10px;*/
    }

    .f-top-left {
        width: auto;
    }

    .addressinfo {
        width: auto;
    }

    .r-t p,
    .r-t a {
        display: inline-block;
        color: #999;
        font-size: 14px;
    }

    .l-t p {
        font-size: 14px;
        color: #014CAD;
    }

    .floor1-txt h3 {
        margin-top: 26px;
        font-size: 24px;
        color: #fff;
        font-weight: bold;
    }

    .floor1-txt p {
        font-size: 14px;
        color: #fff;
        text-align: center !important;
    }



    .w120 {
        width: auto;
        overflow: hidden;
        position: relative;
        /*margin-right: 20px;*/
        /*margin-left: 20px;*/
        flex-direction: column;
    }

    .floor1-img img {
        max-width: 100%;
    }

    .floor1-img {
        height: 50%;
        width: 100%;
        padding: 0 30px;
        padding-top: 60px;
    }

    .floor1-txt {
        height: 30%;
    }

    .global-txt {
        height: 50%;
        padding: 0 20px;
    }

    .floor1-txt {
        padding: 0 20px;
    }

    .floor2 .floor2-img {
        position: inherit;
    }

    .floor2 .global-txt {
        padding-bottom: 30px;
        position: inherit;
    }

    .floor3 .global-txt {
        position: inherit;
    }

    .floor3 .floor3-img {
        position: inherit;
    }

    .prod-fwrap {
        min-height: auto;
        /*padding-bottom: 50px;*/
    }

    .floor1-txt {
        width: 100%;
        text-align: center;
    }

    .left-p-img {
        width: 43%;
        height: 170px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .right-txt h4 {
        width: auto;
    }

    .mb-list-menu {
        display: block;
        padding: 0 4%;
        background-color: #eff2f7;
        height: 50px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .right-product-list ul.product-box li {
        margin-bottom: 15px;
    }

    .more-icon {
        right: 21px;
    }

    .mb-list-menu h5 {
        display: inline-block;
        margin: 0;
        font-size: 16px;
        color: #333;
    }

    .pagenext-p {
        margin-top: 8px;
        margin-bottom: 30px;
    }

    .mb-list-menu i {
        font-size: 20px;
        color: #333;
        transition: all .3s;
    }

    .left-p-img img {
        width: 100%;
        height: auto;
        transition: all .3s;
    }

    .right-txt p {
        width: auto;
    }

    .right-txt {
        margin-left: 20px;
    }

    .products-item {
        padding: 14px;
    }

    .goled {
        cursor: pointer;
    }

    .goled:hover {
        cursor: pointer;
    }

    .gopb:hover {
        cursor: pointer;
    }

    .gopb {
        cursor: pointer;
    }

    .right-txt {
        width: 50%;
        margin-top: 18px;
    }

    .menu-mb-list {
        position: absolute;
        width: 100%;
        /* padding: 15px 0; */
        top: 50px;
        background-color: #fff;
        z-index: 99;
        left: 0;
        right: 0;
        display: none;
    }

    .menu-mb-list ul li a {
        display: block;
        height: 42px;
        line-height: 42px;
        padding-left: 4%;
        color: #666;
        border-bottom: #e2e2e2 solid 1px;
        background: #faf9f9;
        font-size: 14px;
    }

    .right-product-list {
        padding: 0 4%;
    }

    .inner-product-main {
        /* margin-top: 30px; */
        padding-top: 30px;
        padding-bottom: 40px;
        overflow: hidden;
    }

    .left-menu-p {
        display: none;
    }

    .right-product-list ul.product-box li {
        width: 100%;
    }

    .inner-header {
        padding: 0 4%;
    }

    .inner-second-title h4 {
        font-size: 30px;
        color: #fff;
        opacity: 0.4;
        padding-bottom: 5px;
        font-weight: bold;
    }

    .inner-second-title h5 {
        font-weight: bold;
        font-size: 16px;
        color: #fff;
        position: relative;
        height: 35px;
    }

    .inner-second-title h5::after {
        margin-top: 10px;
    }

    .product-pc-bg {
        display: none;
    }

    .product-mb-bg {
        display: block !important;
        margin-top: 58px;
    }

    .inner-logoarea ul li:nth-child(9) {
        display: none;
    }

    .inner-logoarea ul li:nth-child(10) {
        display: none;
    }

    .inner-logoarea ul li:nth-child(11) {
        display: none;
    }

    .inner-logoarea {
        margin-top: 60px;
    }

    .left-logo img {
        width: 40%;
    }

    .in-top {
        padding: 28px 4%;
    }

    .yq-links {
        display: none;
    }

    .f-top-right {
        display: none;
    }

    .footer-bottom p {
        float: none;
    }

    .index-contact-content a {
        margin-top: 35px;
    }

    .addressinfo p {
        font-size: 13px;
    }

    .index-brand-logo {
        padding: 0 4%;
    }

    .footer-bottom .shocompany {
        display: none;
    }

    .footer-bottom p {
        text-align: center;
        font-size: 13px;
        padding: 0 3%;
    }

    .inner-logoarea ul li {
        width: 30%;
    }

    .qrcode {
        display: none;
    }

    .addressinfo {
        margin-left: 0;
    }

    .index-contact-content {
        padding: 0 4%;
    }

    .index-contact-content h4 {
        font-size: 26px;
        margin-top: 90px;
    }

    .index-contact-content p {
        font-size: 14px;
    }

    .index-contact-content a {
        width: 156px;
        height: 33px;
        line-height: 33px;
        font-size: 13px;
    }

    .index-contact {
        height: 350px;
        margin-top: 40px;
        background-position: -574px;
    }

    .index-news-desc {
        padding: 15px;
    }

    .index-news {
        margin-top: 30px;
    }

    .index-news-desc h3 {
        margin-bottom: 4px;
        font-size: 15px;
    }

    .index-news ul li {
        width: 100%;
        margin-bottom: 20px;
    }

    .index-news {
        padding: 0 4%;
    }

    .m-title {
        display: block;
    }

    .main-product .col-lg-3 {
        padding: 0 15px;
    }

    .search-pop {
        display: none !important;
    }

    .search-icon {
        display: none !important;
    }

    /* 首页商品 */
    .product-img {
        /* text-align: center; */
    }

    .index-product {
        margin-top: 60px;
    }

    .product-img img {
        width: 69%;
        padding-left: 15px;
    }

    .index-desc {
        margin-top: 34px;
        padding: 0 15px;
    }

    .index-desc .index-product-title h2 {
        margin-bottom: 15px;
        font-size: 21px;
    }

    .index-caselist ul li a img {
        width: 100%;
        height: 100%;
        transition: all .5s;
    }

    .index-product-btn {
        width: 170px;
        height: 40px;
        line-height: 40px;
        margin-top: 18px;
        font-size: 13px;
    }

    .index-desc .index-product-desc p {
        font-size: 13px;
    }

    /* main */
    .main-product ul li {
        width: 100%;
        margin-top: 30px;
    }

    .main-product {
        padding: 0 4%;
    }

    .main-product {
        margin-top: 20px;
    }

    .main-txt h3 {
        font-size: 22px;
    }

    #topnav .logo .logo-dark {
        display: none;
        height: 33px;
    }

    /* 解决 */
    .sole-left {
        margin-top: 30px;
    }

    .solution-silder {
        margin-top: 50px;
    }

    .m-s-img {
        display: block !important;
    }

    .pc-s-img {
        display: none !important;
    }

    .solu-title h3 {
        font-size: 22px;
    }

    .solu-desc p {
        font-size: 12px;
    }

    .solution-silder {
        margin-bottom: 50px;
    }

    .solution-silder .owl-dots span {
        border-color: #2f55d4 !important;
    }

    .solution-silder .owl-dot.active span {
        background-color: #2f55d4 !important;
    }

    /* 首页案例 */
    .index-caselist ul li {
        width: 100%;
    }

    .index-case-desc {
        display: block;
        padding: 19px 0;
        background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 40%, black 100%);
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(40%, rgba(0, 0, 0, 0.7)), color-stop(100%, black));
        background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 40%, black 100%);
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 40%, black 100%);
        background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 40%, black 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=0);
        background: linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 40%, black 100%);
    }

    .index-case-desc h4 {
        font-size: 15px;
    }

    .index-case-desc p {
        font-size: 12px;
        display: none;
    }

    .index-caselist {
        padding: 0 4%;
    }

    .index-caselist ul li {
        margin-bottom: 30px;
    }

    #topnav .logo .logo-light {
        display: inline-block;
        height: 33px;
    }

    .solution-silder .owl-dots {
        left: 50% !important;
        bottom: -7% !important;
        margin-bottom: 15px;
        transform: translate(-50%);
    }

    #topnav {
        background-color: #ffffff;
        -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
        min-height: 58px;
    }

    .owl-dots .owl-dot span {
        /* display: inline-block !important;
        width:24px !important;
        height: 3px !important;
        margin: 0 5px !important;
        border-radius: none !important; */
        /* border: 1px solid #fff; */
        /* background-color: #fff; */
        width: 8px;
        height: 8px;
    }

    .owl-dot.active span {
        background-color: #fff;
    }


    .mb-img {
        display: block !important;
    }

    .pc-img {
        display: none !important;
    }

    #topnav .tagline {
        display: none;
    }

    #topnav .tagline-dark {
        display: none;
    }

    #topnav .container {
        width: auto;
    }

    #topnav .logo .logo-light {
        display: none;
    }

    #topnav .logo .logo-dark {
        display: inline-block;
    }

    #topnav .navigation-menu {
        float: none;
        max-height: 400px;
    }

    #topnav .navigation-menu>li {
        float: none;
    }

    #topnav .navigation-menu>li:hover>a,
    #topnav .navigation-menu>li.active>a {
        color: #333;
    }

    #topnav .navigation-menu>li .submenu {
        display: none;
        list-style: none;
        padding-left: 20px;
        margin: 0;
    }

    #topnav .navigation-menu>li .submenu li a {
        display: block;
        position: relative;
        padding: 7px 15px;
        text-transform: uppercase;
        font-size: 13px;
        letter-spacing: 0.04em;
        font-weight: normal;
        color: #3c4858;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

    #topnav .navigation-menu>li .submenu.open {
        display: block;
    }

    #topnav .navigation-menu>li .submenu .submenu {
        display: none;
        list-style: none;
    }

    #topnav .navigation-menu>li .submenu .submenu.open {
        display: block;
    }

    #topnav .navigation-menu>li .submenu.megamenu>li>ul {
        list-style: none;
        padding-left: 0;
    }

    #topnav .navigation-menu>li .submenu.megamenu>li>ul>li>span {
        display: block;
        position: relative;
        padding: 10px 15px;
        text-transform: uppercase;
        font-size: 12px;
        letter-spacing: 2px;
        color: #8492a6;
    }

    #topnav .navigation-menu>li>a {
        color: #3c4858;
        padding: 10px 9px;
    }

    #topnav .navigation-menu>li>a:after {
        position: absolute;
        right: 15px;
    }

    #topnav .navigation-menu>li>a:hover,
    #topnav .navigation-menu>li .submenu li a:hover,
    #topnav .navigation-menu>li.has-submenu.open>a {
        color: #2f55d4;
    }

    #topnav .menu-extras .menu-item {
        border-color: #8492a6;
    }

    #topnav .navbar-header {
        float: left;
    }

    #topnav .has-submenu .submenu .submenu-arrow {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        position: absolute;
        right: 20px;
        top: 12px;
    }

    #topnav .has-submenu.active a {
        color: #2f55d4;
    }

    #navigation {
        position: absolute;
        top: 58px;
        left: 0;
        width: 100%;
        display: none;
        height: auto;
        padding-bottom: 0;
        overflow: auto;
        border-top: 1px solid #f1f3f9;
        border-bottom: 1px solid #f1f3f9;
        background-color: #ffffff;
    }

    #navigation.open {
        display: block;
        overflow-y: auto;
    }

    .banner-slider {
        margin-top: 58px;
        width: 100%;
    }

    .footer-bottom #showatag {
        display: block !important;
        float: none;
    }
}

@media (max-width: 768px) {

    #topnav .navigation-menu .has-submenu .menu-arrow {
        right: 16px;
        top: 16px;
        border-color: #3c4858;
    }

    #topnav .navigation-menu .has-submenu.active .menu-arrow {
        color: #2f55d4;
    }

    .solution-silder .owl-dots {
        left: 47% !important;
        bottom: -10% !important;
        margin-bottom: 15px;
    }
}

@media (min-width: 768px) {
    .products-item {
        padding: 14px;
    }

    #topnav .navigation-menu>li.has-submenu:hover>.submenu {
        visibility: visible;
        opacity: 1;
        margin-top: 0;
    }

    #topnav .navigation-menu>li.has-submenu:hover>.submenu>li.has-submenu:hover>.submenu {
        visibility: visible;
        opacity: 1;
        margin-left: 0;
        margin-right: 0;
    }

    .navbar-toggle {
        display: block;
    }
}

@media (max-width: 375px) {
    .products-item {
        padding: 15px 14px;
    }

    .more-icon {
        bottom: 10px;
    }

    #topnav .buy-button {
        display: none;
    }

    #topnav .navbar-toggle .lines {
        margin-right: 0 !important;
    }

    .solution-silder .owl-dots {
        left: 50% !important;
        bottom: -7% !important;
        margin-bottom: 15px;
        transform: translate(-50%);
    }
}

@media (max-width: 320px) {
    .right-txt {
        width: 48%;
    }

    .left-p-img {
        height: 115px;
    }

    .inner-logoarea ul li img {
        transition: all .3s;
        width: 100%;
    }
}